RequiredKeys
import { RequiredKeys } from "@hyper-fetch/core"
Description
Defined in types/helpers.types.ts:13
Preview
type RequiredKeys<T> = { [ P in keyof T ]-?: Exclude<T[P], NegativeTypes> };
Structure
[P in keyof T]-?: Exclude<T[P], NegativeTypes>